home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Technotools
/
Technotools (Chestnut CD-ROM)(1993).ISO
/
lang_c
/
cgraphix
/
catxt.c
< prev
next >
Wrap
Text File
|
1986-05-28
|
1KB
|
43 lines
/* «RM120»«PL99999»«TS4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76» */
#include <stdio.h>
#define EXTERN extern
#include <typedef.h>
main()
{
int i;
double MaxWorldX = 1000., MaxWorldY = 1000.;
char chararray[26];
char str[2];
for (i = 0; i < 26 ; i++)
chararray[i] = 'A' + i;
str[1] = '\0';
InitGraphic(); /* init the system and screen */
DefineWorld(1, 0., 0., 1000., 1000.);
SelectWorld(1);
SelectWindow(1);
DrawBorder();
SetAspect((double)1.);
DrawTextW((double)15., (double)50., 1, "ABCDEFGHIJKLMNOPQRSTUVWXYZ");
DrawTextW((double)15., (double)100., 1, "abcdefghijklmnopqrstuvwxyz");
DrawTextW((double)15., (double)150., 1, "1234567890-=\' !@#$%^&*()_+|");
DrawTextW((double)15., (double)200., 1, "[]{}:\";,.<>/?");
DrawTextW((double)15., (double)300., 5, "\0331\0332\0333\0334\0335\0336\0337\0338");
DrawTextW((double)15., (double)450., 4, "ABCDEFGHIJKLMNOPQRSTUVWXYZ");
DrawTextW((double)15., (double)600., 4, "abcdefghijklmnopqrstuvwxyz");
DrawTextW((double)15., (double)750., 3, "1234567890-=\' !@#$%^&*()_+|");
DrawTextW((double)15., (double)900., 4, "[]{}:\";,.<>/?");
inkey();
LeaveGraphic();
}